home *** CD-ROM | disk | FTP | other *** search
/ Cracking 2 / Cracking II..iso / Tools / ApiHooks 2.2 / examples / ASM / Invisible / Invisible.txt < prev    next >
Encoding:
Text File  |  2000-04-10  |  592 b   |  12 lines

  1.  Invisible "hides" calc.exe process in NT. You should not see it in
  2. taskmgr, spyxx, pview, pstat, ...
  3.  It can be used on one process and it's children:
  4.  apihooks -o path\invisible.dll taskmgr.exe
  5. or it can be applied to all processes via
  6.  apihooks -o path\invisible.dll ALL
  7.  If other calc.exe are started, their windows will not be hidden,
  8. because FindWindow finds only the 1st calc's window. FindWindow
  9. colud be replaced by GetWindowsText, but it is too slow and quite
  10. danger.
  11.  Invisible.dll must not be unloaded, because it has not implemented
  12. unhooking (vs. Infilter2 examples).